home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / startdwm.zip / README.TXT < prev    next >
Text File  |  1994-07-04  |  5KB  |  129 lines

  1.  
  2. DWM Startup Utility
  3. Version 1 (June 1994)
  4. Author: Brian M. Fell <bmf2s@aurora.urich.edu>
  5.  
  6. DESCRIPTION:
  7.  
  8.     This program was written in order to simplify the process of periodically 
  9. executing programs used to maintain a computer's hard disk drive(s). 
  10. The program works by reading in the date from the system clock and executing 
  11. one of three DOS batch files (see below) based on that date.  For instance, 
  12. if the date is the 28th then the monthly.bat file would be executed, if the 
  13. date is the 7th, 14th, or 21st then the weekly.bat file would be executed, 
  14. the daily.bat file would be executed otherwise.
  15.  
  16.      I have outlined below the specifics of how to use this program and some
  17. guidance for those who have never dealt with .bat files.
  18.  
  19.  
  20. HOW TO USE THIS PROGRAM:
  21.  
  22.     Edit each of the .bat files and put in the path and filename of all of
  23. the programs that you wish to have executed on a daily, weekly, and/or 
  24. monthly basis (see below). Then, in your autoexec.bat file put the path to 
  25. the directory in which the files (startup.exe, etc.) have been placed.  I 
  26. suggest creating a directory called startup or just put them in your DOS  
  27. directory. Finally, in your autoexec.bat file put the command STARTUP.EXE after the path statement 
  28. and before any TSRs (programs that remain in memory while other programs are 
  29. running) that may conflict with the execution of any of the executables 
  30. that are to be called by the 3 batch files (for instance Microsoft's Fastopen 
  31. will interfere with the execution of a defragmentation program such as 
  32. Microsoft's Defrag). 
  33.  
  34. The next time you boot up your computer the program will execute.
  35.  
  36.  
  37. BASIC DOS BATCH FILE PROGRAMMING:
  38.  
  39.  
  40.     If you are unfamiliar with .bat files and the example and explanation
  41. given below does nothing for you, please consult your DOS manual or type
  42. 'help batch' at the C:> prompt.
  43.  
  44. >> Edit the batch file with a text editor or word processor capable of saving
  45. >> in DOS text mode.
  46.  
  47. The following is an example of a typical command to be executed in a batch 
  48. file:
  49.  
  50.  
  51. C:\EXAMPLE\RUN.EXE
  52.            ^^^^^^^ The name of the program you wish to have run.
  53. ^^^^^^^^^^ The drive and directory in which the executable file you wish to
  54.            include resides. 
  55.  
  56. Note: An empty batch file will have no effect on the execution of the  
  57.       program, so if you don't want to specify anything to run on say
  58.       a weekly basis, don't worry about it.
  59.  
  60. * I have included my daily.bat file, with notes, for your inspection
  61.  
  62.                                         
  63. COST OF THIS PROGRAM:
  64.  
  65.     This program is shareware and a fee of $4.00 is requested if you wish
  66. to use it.  Your one time registration fee will put you on the mailing list
  67. announcing future updates of this program as well as the satisfaction of 
  68. knowing that you are keeping the concept of shareware alive. Please print out 
  69. and complete the form contained in the file "register.me" and send it in with 
  70. your registration fee as soon as possible.
  71.  
  72.  
  73. PROGRAM SUGGESTIONS:
  74.  
  75.      There are plenty of programs availible that could be used to maintain 
  76. your computer if it is used frequently, obviously this is not a complete 
  77. listing.
  78.  
  79. Note: The execution of all of the programs listed below can be modified
  80.       through the use of switches (commands that come after the executable
  81.       file such as: defrag /f would execute MS-Defrag and would defragment
  82.       all files by using the /f switch).
  83.  
  84. IN THE DAILY.BAT FILE:
  85.  
  86.    * an anti-virus program such as Fridrik Skulason's F-Prot in order to 
  87.      do a daily scan of your hard disk, a scan of just executable files 
  88.      would be sufficient on a daily basis for most computers. 
  89.      
  90. IN THE WEEKLY.BAT FILE:
  91.  
  92.    * an anti-virus program scanning all files for a computer which sees a lot 
  93.      of floppy disks on a weekly basis.
  94.  
  95.    * a hard drive defragmenter such as Microsoft Defrag which will ease the
  96.      process of reading and writing to files on your hard disk by 
  97.      putting individual files in a continuous chain, instead of having them 
  98.      fragmented (spread unlinked throughout your hard disk).
  99.  
  100. IN THE MONTHLY.BAT FILE:
  101.    
  102.    * an anti-virus executing a full scan of the hard disk.
  103.  
  104.    * a defragmentation program
  105.  
  106.    * a program such as Microsoft Scandisk which will check your hard disk
  107.      for potential problem and fix them.
  108.  
  109.    * a simple set of copy comands that will backup your autoexec.bat, 
  110.      config.sys, win.ini, and other files (PKZIP could also be used for
  111.      this).
  112.  
  113. If you have any further questions or suggestions please do not hesitate to
  114. contact me at the E-mail address mentioned below.
  115.  
  116. Thanks,
  117. Brian M. Fell  <bmf2s@aurora.urich.edu>
  118.           
  119.  
  120.  
  121.  
  122. Microsoft Defrag, Scandisk, and Fastopen are trademarks of the Microsoft 
  123. Corporation.
  124.  
  125. F-Prot is a trademark of Frisk Software International and is availible
  126. throught the SimTel Software Repository. 
  127.  
  128. PKZIP is a trademark of PKWARE, Inc. 
  129.